home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / cpp_libs / answrbok / 5_3.lha / 5_3 / makefile < prev   
Makefile  |  1993-08-08  |  280b  |  18 lines

  1. C= CC -I. -I../../CC
  2. RROR=  ../../error.o
  3. FLAGS= -I.
  4.  
  5. ll: 5_3tst
  6.  
  7. _3tst: 5_3.h 5_3a.c 5_3b.c 5_3c.c 5_3d.c 5_3tst.c
  8. $(CC) $(CFLAGS) 5_3tst.c -o 5_3tst $(ERROR)
  9.  
  10. UT= 5_3.out
  11. MP= 5_3.cmp
  12.  
  13. _3.out: 5_3tst ;    5_3tst > 5_3.out
  14.  
  15. est: all $(OUT) $(CMP)
  16. cmp 5_3.out 5_3.cmp
  17. echo tests done
  18.